Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[58256] Header and sidebar menu should be hidden while pressing zen mode button #17045

Open
wants to merge 2 commits into
base: dev
Choose a base branch
from

Conversation

bsatarnejad
Copy link
Contributor

Ticket

https://community.openproject.org/projects/openproject/work_packages/58256/activity

What are you trying to accomplish?

Update core with new version of primer view components. Listen to the toggledZenMode event and set/remove zen-mode class on body element.

if (isActive) {
document.body.classList.add('zen-mode');
} else {
document.body.classList.remove('zen-mode');
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 You can simplify the whole method by using toggle

window.addEventListener('zenModeToggled', (event:CustomEvent) => {
  document.body.classList.toggle('zen-mode', event.detail.active)
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants